home *** CD-ROM | disk | FTP | other *** search
/ Shareware Super Platinum 8 / Shareware Super Platinum 8.iso / mac / DATABASE / OBJ1_2.ZIP;1 / READ_ME < prev    next >
Encoding:
Text File  |  1993-01-30  |  5.3 KB  |  139 lines

  1.  
  2.                                  OBJECT.LIB
  3.             high level object oriented library for Clipper v5.01
  4.            ******************************************************
  5.                copyright (c) 1992, JHK, JHK-Software, Piestany
  6.  
  7.  
  8. Motto:
  9. ~~~~~~
  10.    Database programs on the fly!
  11.  
  12.  
  13.  
  14. Basic features:
  15. ~~~~~~~~~~~~~~~
  16.    - object oriented (classes,heredity,...)
  17.    - user task swapping
  18.    - "Windows - like" user interface
  19.    - multithreading is enabled
  20.    - event driven programming support through the philosophy of the library
  21.    - data driven programming capability and design
  22.    - generated code is true network capable
  23.    - user defined reports
  24.    - user defined filters
  25.    - user defined indexes
  26.    - unlimited paswords, user privileges individual to every menu item,
  27.      every database field
  28.    - automatic generated help system with context help
  29.    - user defined help system
  30.    - all graphical cards text mode support
  31.      (CGA,EGA,VGA,HGC,laptops,monochromVGA,...)
  32.    - clipper language enhancements
  33.    - dramatical shortening of a aplication developement time, aplication
  34.      length in 200 to 2000 (for very large apps.) source code lines
  35.    - basic functions of a program can be presented to the user in the very
  36.      first time consulting his problem
  37.    - simple program maintenance
  38.    - documentation in a form of "norton guide" in a file OBJECT.NG
  39.  
  40.    The library is 420kB of source code with 330kB of documentation,
  41.    consists of 450 functions, methods or procedures and many new commands.
  42.  
  43.  
  44.  
  45. Author:
  46. ~~~~~~~
  47.    Jan Hercek
  48.    JHK-Software
  49.    N.Teslu 26
  50.    92101 Piestany
  51.    Slovak republic
  52.    (in central Europe)
  53.  
  54.    FIDO 2:422/34 JAN HERCEK
  55.    tel.(home) +42-838-21782
  56.  
  57.  
  58.  
  59. Notice:
  60. ~~~~~~~
  61.    OBJECT.lib, high level object oriented library, is FREEWARE.  It may be
  62.    freely distributed and used by individuals and corporations without
  63.    charge.  It may not, however, be sold or distributed for a price.
  64.    It must be distributed as a whole, without any changes.
  65.  
  66.    OBJECT.lib is my present for all clipper programmers. If you want,
  67.    you can use it (or any part from it) without any complication about the
  68.    payment. But if you find this software (or its part) as usefull for you,
  69.    and ( or ) you want to express a goodwill, send me please as a present few
  70.    dolars. I like to buy any light-weight wheel-chair because I am a
  71.    wheel-chair user with damaged backbone, and I (and my wife) have problems
  72.    to put my current wheel-chair into a car, because it is very heavy for us.
  73.    Thank you!
  74.    Beneficiary: HERCEK JAN
  75.    Account number: 74835-81652-229
  76.    Account with: Slovenska statna sporitelna Bratislava
  77.                  CHIPS UID- 317313
  78.    Coresp. bank: BANKERS TRUST COMPANY, New York.
  79.  
  80.  
  81.    This software is provided on an as-is basis.  If you decide to use
  82.    it, you do so at your own risk.  I (Jan Hercek) will not be responsible
  83.    for any losses caused, either directly or indirectly, by the use of
  84.    this product.
  85.  
  86.    At all times, the copyright and title for OBJECT.lib remain with
  87.    Jan Hercek, JHK-Software, N.Teslu 26, Piestany, Slovak republic.
  88.  
  89.  
  90.  
  91. Remarks:
  92. ~~~~~~~~
  93. If you have a problem with this software, you think about:
  94.  
  95.    Due to Clipper internal dyamic overlay system you have not to check the
  96.    exe file size. You can run a 5MB exe file in 450Kb RAM, but internal VMM
  97.    (Virtual Memory Manager) often accesses the HDD. For your programs the
  98.    minimal configuration is AT286, 12MHz, 1MB RAM. The XT computers are too
  99.    slowly for database aplications. I recomend to use maximal amount of memory
  100.    as disk cache, with 1MB RAM it can be 640kB for DOS and 384kB for cache
  101.    (it is better to use some WRITE-THROUGH cache with deferred write).
  102.  
  103.    Your config.sys should contain the line:
  104.                      FILES=79
  105.    The amount of FILES is high because the Object.lib maintains the database
  106.    files opened till finishing the program.
  107.  
  108.    Autoexec.bat should contain :
  109.                      SET CLIPPER=E0;F:69;
  110.    The line (SET...) supresses the use of EMS memory (if you have memory
  111.    enough can be changed) and it is enabled to open 69 files.
  112.  
  113.    Every program created with OBJECT.lib will create next (unique)
  114.    system database files: SYSTEM1.DBF,SYSTEM2.DBF,SYSTEM3.DBF. However you
  115.    cannot run more than one program in the same default (working) directory,
  116.    because every program must have its unique system files.
  117.  
  118.    For MS-DOS 5.0 there can be a need to use LOADFIX DEMO1 instead DEMO1 to
  119.    run the aplication. See on MS-DOS documentation for the command LOADFIX.
  120.  
  121.    If your program uses the OBJECT.PLL, you must have the correct command
  122.    SET PLL=<disk>:\<path_for_pll_directory> in your autoexec.bat file.
  123.  
  124.    ^Enter (Ctrl-Enter) == all inside the current window is ok, write the
  125.    changes, close the window.
  126.  
  127.    Esc == forget changes inside the current window (if it possible!), close
  128.    the window.
  129.  
  130.    Program archiv.exe must be in your path (or in the current directory) !!!
  131.  
  132.    In DEMO3.exe You must first insert any records into the window (database)
  133.    Emplyees, than You can insert any records into the window Tasks.
  134.    (in this wery simple demonstration program I do not have all need
  135.    checks)
  136.  
  137. --------------------------------------------------------- end of file --------
  138.  
  139.